home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
BBS in a Box 5
/
BBS in a Box -Volume V (BBS in a Box) (April 1992).iso
/
Files
/
Prog
/
M
/
MPWGCC (Machines).cpt
/
Miscellaneous
/
ecoff-cmp
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1990-03-08
|
246 b
|
13 lines
|
[
TEXT/MPS
]
#!/bin/sh
#
# ecoff-cmp file1.o file2.o
#
cp $1 /tmp/foo1.$$
cp $2 /tmp/foo2.$$
strip /tmp/foo1.$$
strip /tmp/foo2.$$
tail +10 /tmp/foo1.$$ > /tmp/foo3.$$
tail +10 /tmp/foo2.$$ > /tmp/foo4.$$
cmp /tmp/foo3.$$ /tmp/foo4.$$
rm -f /tmp/foo[1234].$$